home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr48
/
pp001.zip
/
EX2.PRG
< prev
next >
Wrap
Text File
|
1991-04-11
|
553b
|
15 lines
Program Example2;
{ This is a sample program for the SIMPLE+ compiler
Requires version 0.12 or later
Comments go inside braces...
}
VAR { variable definitions }
a,b,c : integer; { all variables are assumed integer (for now) }
Begin { begin..end - block statement }
a := 1;
b := 99;
for c := a to b do
WriteLn(c); { write value of a, followed by CR/LF }
end. { period ends program }